home *** CD-ROM | disk | FTP | other *** search
/ FM Towns: Free Software Collection 6 / FM Towns Free Software Collection 6.iso / ms_dos / gds / source / gds103.c < prev    next >
Encoding:
C/C++ Source or Header  |  1993-07-08  |  319 b   |  20 lines

  1.  
  2. /*
  3.  *
  4.  *    GDS103 : 全画面の消去
  5.  *
  6.  */
  7.  
  8. #include <stdio.h>
  9. #include <dos.h>
  10.  
  11. unsigned int GDS_all_clear(void) {
  12.    union  REGS  inregs, outregs;
  13.    struct SREGS segregs;
  14.  
  15.    segread(&segregs);
  16.    inregs.x.ax=0x8400;
  17.    int86x(0x92,&inregs,&outregs,&segregs);
  18.    return (unsigned int)outregs.h.ah;
  19. }
  20.